feat: add Thai Pass to llms.txt hub#455
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
WalkthroughAdds a new markdown content file for Thai Pass with YAML front matter containing metadata (name, description, website URLs, category, publication date) and a brief markdown description. The file integrates into the packages/content/data/websites directory structure. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
Knowledge base: Disabled due to Reviews -> Disable Knowledge Base setting
📒 Files selected for processing (1)
packages/content/data/websites/thai-pass-llms-txt.mdx(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: Validate
🔇 Additional comments (2)
packages/content/data/websites/thai-pass-llms-txt.mdx (2)
1-9: File structure and naming conventions are correct—no issues found.The filename
thai-pass-llms-txt.mdxfollows the established kebab-case naming pattern, and the YAML front matter matches the structure used consistently across existing files inpackages/content/data/websites/. All required fields (name, description, website, llmsUrl, llmsFullUrl, category, publishedAt) are present and properly formatted.
6-6: EmptyllmsFullUrlfield is standard practice in this codebase.Analysis of existing entries shows that the vast majority have
llmsFullUrl: ''(empty string), with only a few entries containing populated URLs. The Thai Pass entry correctly follows this convention.
| name: 'Thai Pass' | ||
| description: 'Thai Pass is the leading website for booking Thailand Tours, Activities, Experiences and More across Thailand. Get Upto 50% OFF on all Thailand Activities.' | ||
| website: 'https://www.thethaipass.com/' | ||
| llmsUrl: 'https://www.thethaipass.com/llms.txt' |
There was a problem hiding this comment.
🧩 Analysis chain
Verify the llms.txt endpoint is accessible.
Ensure that the llmsUrl (https://www.thethaipass.com/llms.txt) is accessible and returns valid content. This is critical for the hub to function correctly with Thai Pass.
You can verify this by checking the URL:
🏁 Script executed:
#!/bin/bash
# Description: Verify the llms.txt endpoint is accessible
# Check if the endpoint responds with a valid status code
curl -I https://www.thethaipass.com/llms.txt -w "\nHTTP Status: %{http_code}\n"
# Optionally fetch a sample of the content
curl -s https://www.thethaipass.com/llms.txt | head -20Length of output: 1048
The llms.txt endpoint returns HTTP 404 Not Found.
The URL https://www.thethaipass.com/llms.txt is not accessible—it returns a 404 error with the message "Page not found: /llms.txt". Before merging this change, verify with the Thai Pass team that:
- The correct endpoint URL is configured
- The endpoint is live and accessible
- It returns valid llms.txt content
🤖 Prompt for AI Agents
In packages/content/data/websites/thai-pass-llms-txt.mdx around line 5, the
configured llmsUrl points to https://www.thethaipass.com/llms.txt which returns
HTTP 404; confirm the correct endpoint with the Thai Pass team and update the
URL to the live, accessible endpoint that serves valid llms.txt content (or
remove the entry if the site does not provide llms.txt). After updating, verify
the endpoint returns a 200 and valid llms.txt content before merging.
This PR adds Thai Pass to the llms.txt hub.
Submitted by: avneetsingh1357
Website: https://www.thethaipass.com/
llms.txt: https://www.thethaipass.com/llms.txt
Category: international
This PR was created via admin token for a user without GitHub repository access.
Please review and merge if appropriate.
Summary by CodeRabbit